home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Compendium Deluxe 2
/
LSD and 17bit Compendium Deluxe - Volume II.iso
/
a
/
prog
/
misc
/
xes120.lha
/
XES
/
REXX
/
LoadArray.xdme
< prev
next >
Wrap
Text File
|
1994-11-09
|
288b
|
18 lines
/* LoadArray.xdme */
parse arg v file
file = strip(file)
call open(input,file,"R")
size = 0
do forever
line = "(" || readln(input) || ")"
if eof(input) then leave
size = size + 1
xcom = "set" v || size line
xcom
end
xcom = "set" v || "0" size
xcom
call close(input)